/* ============================================
   PIN-UP CASINO AZ — MAIN STYLES
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@400;500;600;700;800;900&family=Rajdhani:wght@400;500;600;700&display=swap');

/* === CSS VARIABLES === */
:root {
  --red:        #E8002D;
  --red-dark:   #B0001F;
  --red-light:  #FF1A47;
  --gold:       #FFD700;
  --gold-dark:  #CCA800;
  --gold-light: #FFE84D;
  --dark:       #0A0A0F;
  --dark2:      #13131C;
  --dark3:      #1C1C2A;
  --dark4:      #252535;
  --light:      #F5F0E8;
  --white:      #FFFFFF;
  --gray:       #8888A0;
  --gray-light: #B0B0C8;

  --font-display: 'Bebas Neue', cursive;
  --font-main:    'Montserrat', sans-serif;
  --font-accent:  'Rajdhani', sans-serif;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-gold: 0 0 24px rgba(255,215,0,0.35), 0 4px 20px rgba(0,0,0,0.5);
  --shadow-red:  0 0 24px rgba(232,0,45,0.45), 0 4px 20px rgba(0,0,0,0.5);
  --shadow-card: 0 8px 32px rgba(0,0,0,0.6);

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-fast: 0.18s ease;
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--dark);
  color: var(--light);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* === SCROLLBAR === */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* === SELECTION === */
::selection { background: var(--red); color: var(--white); }

/* === UTILITY CLASSES === */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  letter-spacing: 2px;
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-subtitle {
  font-family: var(--font-accent);
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: var(--gray-light);
  margin-bottom: 48px;
  font-weight: 500;
}

.gold-text { color: var(--gold); }
.red-text  { color: var(--red); }

.section-header {
  text-align: center;
  margin-bottom: 12px;
}

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.12);
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.btn:hover::before { opacity: 1; }

.btn-primary {
  background: linear-gradient(135deg, var(--red-light) 0%, var(--red) 50%, var(--red-dark) 100%);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 36px rgba(232,0,45,0.65), 0 8px 24px rgba(0,0,0,0.5);
}

.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 0 36px rgba(255,215,0,0.65), 0 8px 24px rgba(0,0,0,0.5);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(4px);
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(255,215,0,0.3);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
}

/* === NOISE OVERLAY === */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: linear-gradient(180deg, rgba(10,10,15,0.98) 0%, rgba(10,10,15,0.92) 100%);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232,0,45,0.2);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(10,10,15,0.99);
  border-bottom-color: rgba(232,0,45,0.4);
  box-shadow: 0 4px 32px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  gap: 24px;
}

/* LOGO */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.logo-wrap:hover { transform: scale(1.04); }

.logo-svg {
  width: 44px;
  height: 44px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text-top {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 3px;
  color: var(--white);
}

.logo-text-bottom {
  font-family: var(--font-accent);
  font-size: 0.62rem;
  letter-spacing: 4px;
  color: var(--gold);
  text-transform: uppercase;
}

/* NAV */
.main-nav { flex: 1; display: flex; justify-content: center; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-family: var(--font-accent);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition-fast);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 80%;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transition: transform var(--transition-fast);
}

.nav-link:hover { color: var(--white); }
.nav-link:hover::after { transform: translateX(-50%) scaleX(1); }
.nav-link.active { color: var(--gold); }
.nav-link.active::after { transform: translateX(-50%) scaleX(1); background: var(--gold); }

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
  transform-origin: center;
}

.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 70px; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,15,0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 40px 24px;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--gray-light);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 12px;
}

.mobile-nav-link:hover { color: var(--white); padding-left: 8px; }
.mobile-nav-link.active { color: var(--gold); }

.mobile-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.mobile-actions .btn { width: 100%; justify-content: center; }

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(232,0,45,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(255,215,0,0.10) 0%, transparent 60%),
    linear-gradient(180deg, rgba(10,10,15,0.3) 0%, rgba(10,10,15,0.7) 100%);
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-content { max-width: 560px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232,0,45,0.15);
  border: 1px solid rgba(232,0,45,0.4);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-light);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: 3px;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s 0.1s ease both;
}

.hero-title span {
  display: block;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--gray-light);
  margin-bottom: 36px;
  line-height: 1.8;
  animation: fadeInUp 0.7s 0.2s ease both;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
  animation: fadeInUp 0.7s 0.3s ease both;
}

.hero-stats {
  display: flex;
  gap: 32px;
  animation: fadeInUp 0.7s 0.4s ease both;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.9rem;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
}

.hero-stat-label {
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 1s 0.3s ease both;
}

.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.hero-image-wrap::before {
  content: '';
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(232,0,45,0.25) 0%, transparent 70%);
  border-radius: 50%;
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
}

.hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-16px); }
}

/* ============================================
   BRAND / ABOUT SECTION
   ============================================ */
.brand-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.brand-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.brand-visual {
  position: relative;
}

.brand-image {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.brand-badge-float {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-red);
  animation: float 5s ease-in-out infinite;
}

.brand-badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
}

.brand-badge-text {
  font-family: var(--font-accent);
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.brand-content {}

.brand-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}

.brand-feature {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition);
}

.brand-feature:hover {
  border-color: rgba(232,0,45,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(232,0,45,0.15);
}

.brand-feature-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}

.brand-feature-title {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.brand-feature-text {
  font-size: 0.83rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ============================================
   BONUSES TABLE SECTION
   ============================================ */
.table-section {
  padding: 80px 0;
  background: var(--dark2);
  position: relative;
}

.table-section::before,
.table-section::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,215,0,0.3), transparent);
}
.table-section::before { top: 0; }
.table-section::after  { bottom: 0; }

.bonus-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(255,215,0,0.15);
}

.bonus-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 650px;
}

.bonus-table thead tr {
  background: linear-gradient(90deg, var(--red-dark), var(--red), #9B0020);
}

.bonus-table th {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  padding: 16px 20px;
  text-align: left;
}

.bonus-table th:first-child { border-radius: var(--radius-md) 0 0 0; }
.bonus-table th:last-child  { border-radius: 0 var(--radius-md) 0 0; }

.bonus-table tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background var(--transition-fast);
}

.bonus-table tbody tr:hover { background: rgba(255,215,0,0.05); }
.bonus-table tbody tr:last-child { border-bottom: none; }

.bonus-table td {
  padding: 16px 20px;
  font-family: var(--font-accent);
  font-size: 0.92rem;
  color: var(--gray-light);
}

.bonus-table td:first-child {
  font-weight: 700;
  color: var(--white);
}

.bonus-amount {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 1px;
  color: var(--gold);
}

.bonus-badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-hot { background: rgba(232,0,45,0.2); color: var(--red-light); border: 1px solid rgba(232,0,45,0.4); }
.badge-new { background: rgba(255,215,0,0.15); color: var(--gold); border: 1px solid rgba(255,215,0,0.35); }
.badge-vip { background: rgba(138,43,226,0.2); color: #C678F5; border: 1px solid rgba(138,43,226,0.4); }

/* ============================================
   BONUSES SECTION
   ============================================ */
.bonuses-section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.bonuses-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.bonus-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}

.bonus-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,0,45,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}

.bonus-card:hover { 
  transform: translateY(-8px);
  border-color: rgba(232,0,45,0.35);
  box-shadow: 0 16px 48px rgba(232,0,45,0.2);
}

.bonus-card:hover::before { opacity: 1; }

.bonus-card.featured {
  border-color: rgba(255,215,0,0.4);
  background: linear-gradient(145deg, var(--dark3) 0%, rgba(25,20,5,1) 100%);
}

.bonus-card.featured::before {
  background: linear-gradient(135deg, rgba(255,215,0,0.08) 0%, transparent 60%);
  opacity: 1;
}

.bonus-card.featured:hover {
  border-color: rgba(255,215,0,0.7);
  box-shadow: 0 16px 48px rgba(255,215,0,0.2);
}

.bonus-card-tag {
  position: absolute;
  top: 16px; right: 16px;
}

.bonus-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
  background: rgba(232,0,45,0.15);
  border: 1px solid rgba(232,0,45,0.25);
}

.bonus-card.featured .bonus-icon-wrap {
  background: rgba(255,215,0,0.12);
  border-color: rgba(255,215,0,0.3);
}

.bonus-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 1.5px;
  color: var(--white);
  margin-bottom: 8px;
}

.bonus-amount-big {
  font-family: var(--font-display);
  font-size: 2.4rem;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 12px;
  line-height: 1;
}

.bonus-desc {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.bonus-terms {
  font-size: 0.75rem;
  color: var(--gray);
  margin-top: 12px;
}

/* ============================================
   GAMES SECTION
   ============================================ */
.games-section {
  padding: 100px 0;
  background: var(--dark2);
  position: relative;
  overflow: hidden;
}

.games-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.games-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.games-tab {
  padding: 10px 24px;
  border-radius: 50px;
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray-light);
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  cursor: pointer;
  transition: var(--transition-fast);
}

.games-tab:hover { color: var(--white); border-color: rgba(255,255,255,0.2); }
.games-tab.active {
  background: var(--red);
  color: var(--white);
  border-color: transparent;
  box-shadow: var(--shadow-red);
}

/* SLIDER */
.games-slider-wrap {
  position: relative;
  overflow: hidden;
}

.games-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

.game-card {
  flex: 0 0 calc(20% - 16px);
  min-width: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  box-shadow: var(--shadow-card);
}

.game-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(232,0,45,0.5);
  box-shadow: 0 20px 40px rgba(232,0,45,0.3), 0 4px 12px rgba(0,0,0,0.6);
  z-index: 2;
}

.game-img-wrap {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  position: relative;
}

.game-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.game-card:hover .game-img-wrap img { transform: scale(1.08); }

.game-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,15,0.95) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}

.game-card:hover .game-overlay { opacity: 1; }

.game-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px;
  background: linear-gradient(135deg, var(--red-light), var(--red));
  color: var(--white);
  border-radius: var(--radius-sm);
  font-family: var(--font-accent);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition-fast);
  border: none;
  cursor: pointer;
}

.game-play-btn:hover { filter: brightness(1.15); }

.game-info {
  padding: 12px 14px 14px;
}

.game-name {
  font-family: var(--font-accent);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.game-provider {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.game-badge {
  position: absolute;
  top: 8px; left: 8px;
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
}

.badge-popular { background: var(--red); color: var(--white); }
.badge-new-game { background: var(--gold); color: var(--dark); }
.badge-jackpot { background: rgba(138,43,226,0.9); color: var(--white); }

/* SLIDER CONTROLS */
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  font-size: 1rem;
}

.slider-btn:hover {
  background: var(--red);
  border-color: var(--red);
  box-shadow: var(--shadow-red);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

/* ============================================
   BANNER SECTION
   ============================================ */
.banner-section {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.promo-banner {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: center;
}

.promo-banner-bg {
  position: absolute;
  inset: 0;
}

.promo-banner-bg svg {
  width: 100%;
  height: 100%;
}

.promo-banner-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  width: 100%;
  padding: 48px 56px;
}

.promo-label {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.promo-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  letter-spacing: 2px;
  line-height: 1;
  color: var(--white);
  margin-bottom: 16px;
}

.promo-title span { color: var(--gold); }

.promo-desc {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 480px;
  margin-bottom: 28px;
}

.promo-countdown {
  display: flex;
  gap: 16px;
}

.countdown-item {
  text-align: center;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,215,0,0.3);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  min-width: 64px;
}

.countdown-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 2px;
  color: var(--gold);
  line-height: 1;
}

.countdown-label {
  font-family: var(--font-accent);
  font-size: 0.65rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.promo-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.promo-coins {
  width: 220px;
  animation: float 4s ease-in-out infinite;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--dark2);
  border-top: 1px solid rgba(232,0,45,0.2);
  padding: 64px 0 28px;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.88rem;
  color: var(--gray);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--gray-light);
  transition: var(--transition-fast);
  cursor: pointer;
}

.social-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-red);
}

.footer-col-title {
  font-family: var(--font-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-link {
  font-size: 0.88rem;
  color: var(--gray);
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-link:hover { color: var(--gold); padding-left: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-legal {
  font-size: 0.78rem;
  color: var(--gray);
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal a {
  transition: var(--transition-fast);
}

.footer-legal a:hover { color: var(--light); }

.footer-age {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--gray);
}

.age-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 0.72rem;
  font-weight: 700;
  flex-shrink: 0;
}

.footer-payment-icons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.payment-icon {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  padding: 6px 12px;
  font-family: var(--font-accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gray-light);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.shimmer-text {
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold-light) 40%, var(--gold-dark) 60%, var(--gold) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-inner { gap: 40px; }
}

@media (max-width: 1024px) {
  .bonuses-grid { grid-template-columns: 1fr 1fr; }
  .game-card { flex: 0 0 calc(25% - 15px); }
  .brand-grid { gap: 48px; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .header-actions .btn { display: none; }
  .burger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual { display: none; }
  .hero-cta { justify-content: center; }
  .hero-stats { justify-content: center; }

  .brand-grid { grid-template-columns: 1fr; }
  .brand-badge-float { bottom: -12px; right: 0; }
  .brand-visual { max-width: 500px; margin: 0 auto; }

  .promo-banner-inner {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    text-align: center;
  }

  .promo-countdown { justify-content: center; }
  .promo-visual { display: none; }

  .game-card { flex: 0 0 calc(33.33% - 14px); }
}

@media (max-width: 680px) {
  .bonuses-grid { grid-template-columns: 1fr; }
  .brand-features { grid-template-columns: 1fr; }
  .game-card { flex: 0 0 calc(50% - 10px); }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .hero-stats { gap: 20px; flex-wrap: wrap; justify-content: center; }
  .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .game-card { flex: 0 0 calc(50% - 10px); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-legal { gap: 12px; }
  .hero-title { font-size: 2.8rem; }
  .promo-countdown { gap: 10px; }
  .countdown-item { padding: 10px 12px; min-width: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
